projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9d56cee
)
gdk: Fix GDK_ALL_EVENTS_MASK
author
Benjamin Otte
<otte@redhat.com>
Mon, 13 Nov 2017 16:06:34 +0000
(17:06 +0100)
committer
Benjamin Otte
<otte@redhat.com>
Mon, 13 Nov 2017 22:41:37 +0000
(23:41 +0100)
This mask was forgotten to update when the last 2 event masks were
added, probably because it looks like it's already maxed.
gdk/gdktypes.h
patch
|
blob
|
history
diff --git
a/gdk/gdktypes.h
b/gdk/gdktypes.h
index 88346fc5450f51a925392e65555620227a9a0f22..ad6248dd093f511a267fe836ab86ed298bd01c92 100644
(file)
--- a/
gdk/gdktypes.h
+++ b/
gdk/gdktypes.h
@@
-441,7
+441,7
@@
typedef enum
GDK_SMOOTH_SCROLL_MASK = 1 << 23,
GDK_TOUCHPAD_GESTURE_MASK = 1 << 24,
GDK_TABLET_PAD_MASK = 1 << 25,
- GDK_ALL_EVENTS_MASK = 0xFFFFFE
+ GDK_ALL_EVENTS_MASK = 0x
3
FFFFFE
} GdkEventMask;
/**